home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Programming / AmigaE / Src / Modules / exec / ports.e < prev    next >
Encoding:
Text File  |  1997-03-09  |  372 b   |  27 lines

  1. OPT MODULE
  2. OPT EXPORT
  3.  
  4. MODULE 'exec/lists',
  5.        'exec/nodes'
  6.  
  7. OBJECT mp
  8.   ln:ln
  9.   flags:CHAR
  10.   sigbit:CHAR
  11.   sigtask:LONG
  12.   msglist:lh
  13. ENDOBJECT     /* SIZEOF=34 */
  14.  
  15. CONST MP_SOFTINT=16,
  16.       PF_ACTION=3,
  17.       PA_SIGNAL=0,
  18.       PA_SOFTINT=1,
  19.       PA_IGNORE=2
  20.  
  21. OBJECT mn
  22.   ln:ln
  23.   replyport:PTR TO mp
  24.   length:INT  -> This is unsigned
  25. ENDOBJECT     /* SIZEOF=20 */
  26.  
  27.